CREATE TABLE adempiere.C_Group_Corporation
(
  C_Group_Corporation_ID numeric(10,0) NOT NULL,
  C_Group_Corporation_uu character varying(36) DEFAULT NULL::character varying,
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  Created timestamp without time zone NOT NULL DEFAULT now(),
  CreatedBy numeric(10,0) NOT NULL,
  Updated timestamp without time zone NOT NULL DEFAULT now(),
  UpdatedBy numeric(10,0) NOT NULL,

  C_Corporation_Group_ID numeric(10,0) NOT NULL,
  C_Corporation_ID  numeric(10,0) NOT NULL,


  CONSTRAINT C_Group_Corporation_pkey PRIMARY KEY (C_Group_Corporation_ID)
)